home *** CD-ROM | disk | FTP | other *** search
/ Dynamic HTML Construction Kit / Dynamic HTML Construction Kit.iso / source_code / dhtmlunl / dhtml.exe / CD Content / Chap16 / dun16_8.txt < prev    next >
Encoding:
Text File  |  1997-12-18  |  197 b   |  9 lines

  1. function inputNumbers()
  2.  
  3. {
  4.  
  5.   // Keycode of character '0' is 48, of character '9' is 57.
  6.  
  7.   if (event.keyCode >= 48 && event.keyCode <= 57)
  8.  
  9.     return true;
  10.  
  11.   else
  12.  
  13.     return false;
  14.  
  15. }
  16.  
  17.